fee36abfcabc9239cc5c9d1adf006e88a2b04838,src/main/java/com/inin/analytics/elasticsearch/transport/BaseTransport.java,BaseTransport,placeMissingShards,#String#String#number#,70
Before Change
String destination = removeStorageSystemFromPath(snapshotFinalDestination);
// Upload top level manifests
transferFile(false, destination, "metadata-" + snapshotName, snapshotWorkingLocation);
transferFile(false, destination, "snapshot-" + snapshotName, snapshotWorkingLocation);
transferFile(false, destination, "index", snapshotWorkingLocation);
After Change
init();
String destination = removeStorageSystemFromPath(snapshotFinalDestination);
if(includeRootManifest) {
// Upload top level manifests
transferFile(false, destination, "metadata-" + snapshotName, snapshotWorkingLocation);
transferFile(false, destination, "snapshot-" + snapshotName, snapshotWorkingLocation);
transferFile(false, destination, "index", snapshotWorkingLocation);
}